home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
dev
/
lang
/
SmallEiffel.lha
/
SmallEiffel
/
misc
/
benchmarks
/
gc
/
LkFSO
/
triangle.e
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-12-22
|
160 b
|
17 lines
class TRIANGLE
creation make
feature
p1, p2, p3: POINT;
make(vp1, vp2, vp3: POINT) is
do
p1 := vp1;
p2 := vp2;
p3 := vp3;
end;
end